From ff3ba258ad75c5bcf4ffb837c05104314c586c7d Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Thu, 7 Dec 2006 17:48:35 +0000 Subject: [PATCH] Fix PERROR. Signed-off-by: Ewan Mellor --- tools/libxc/xc_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/xc_private.h b/tools/libxc/xc_private.h index 2ddec3f988..f087e7de69 100644 --- a/tools/libxc/xc_private.h +++ b/tools/libxc/xc_private.h @@ -63,7 +63,7 @@ void xc_set_error(int code, const char *fmt, ...); #define ERROR(_m, _a...) xc_set_error(XC_INTERNAL_ERROR, _m , ## _a ) #define PERROR(_m, _a...) xc_set_error(XC_INTERNAL_ERROR, _m " (%d = %s)", \ - _m , ## _a , errno, strerror(errno)) + ## _a , errno, strerror(errno)) int lock_pages(void *addr, size_t len); void unlock_pages(void *addr, size_t len); -- 2.30.2